Footer.render   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 8
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 1
1
/*eslint max-len: ["error", { "code": 120 }]*/
2
3
import React, { Component } from 'react';
4
import meSmallImage from '../../assets/img/Paul-Moreland.jpg';
5
6
class Footer extends Component {
7
    render() {
8
        return (
9
            <footer id="site-footer">
10
                <div className="me-tag">
11
                    <img src={meSmallImage} alt="Paul Moreland" />
12
                    <p>Paul Moreland är student hos Blekinge Tekniska Högskola och studerar Webbprogrammering</p>
13
                </div>
14
            </footer>
15
        );
16
    }
17
}
18
19
export default Footer;
20